// // Copyright (c) 2009 All Right Reserved // // Stephen Toub // stoub@microsoft.com // 2009-01-01 // Contains ... using System; namespace LargoCommon.Midi { /// A device name meta event. [Serializable] public sealed class MetaDeviceName : MetaAbstractText { #region Fields /// The meta id for this event. private const byte EventMetaId = 0x9; #endregion #region Constructors /// Initializes a new instance of the MetaDeviceName class. /// The amount of time before this event. /// The text associated with the event. public MetaDeviceName(long deltaTime, string text) : base(deltaTime, EventMetaId, text) { } #endregion } }